Pre

class Pre(val renderer: RendererLivingEntity<EntityLivingBase>, val entity: EntityLivingBase, val x: Double, val y: Double, val z: Double, val partialTicks: Float) : RenderLivingEvent(source)

This is called before an entity is rendered.

If cancelled, the entity is not rendered.

Constructors

Link copied to clipboard
constructor(renderer: RendererLivingEntity<EntityLivingBase>, entity: EntityLivingBase, x: Double, y: Double, z: Double, partialTicks: Float)

Properties

Link copied to clipboard
@get:JvmName(name = "isCancelled")
var cancelled: Boolean

This field defines whether the event is cancelled or not. Any mod can cancel and un-cancel an event. What an event does when cancelled is event-specific, and noted in that event's documentation.

Link copied to clipboard
val entity: EntityLivingBase

The entity being rendered.

Link copied to clipboard
Link copied to clipboard
val renderer: RendererLivingEntity<EntityLivingBase>
Link copied to clipboard
val x: Double

The x coordinate where the entity is being rendered this frame.

Link copied to clipboard
val y: Double

The y coordinate where the entity is being rendered this frame.

Link copied to clipboard
val z: Double

The z coordinate where the entity is being rendered this frame.